home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / DTS QT Utilities.Aug-95 / Projects & Test Apps / MovieShell / Mac Framework / AppConfiguration.h next >
Encoding:
C/C++ Source or Header  |  1995-05-13  |  903 b   |  50 lines  |  [TEXT/MPCC]

  1. /*
  2.     File:        AppConfiguration.h
  3.     
  4.     Contains:    Values for configuration purposes inside the actual application.
  5.     Written by:    DTS
  6.  
  7.     Copyright:    © 1994-1995 by Apple Computer, Inc., all rights reserved.
  8.  
  9.     Change History (most recent first):
  10.  
  11.        <1>         12/30/94    khs        first file
  12.        
  13. */
  14.  
  15.  
  16. #pragma once
  17.  
  18.  
  19. #include <Movies.h>
  20.  
  21.  
  22. // TOOLBOX CONSTANTS
  23. enum eBasicConstants {
  24.     kWNEDefaultSleep = 0,                                                                // WNE Sleep time value
  25.     kDefaultSysBeep = 10
  26. };
  27.  
  28. enum eWindowConstants {
  29.     kDefaultX = 100,
  30.     kDefaultY = 100
  31. };
  32.  
  33.  
  34. enum eMemoryConstants {
  35.     kAvailableMem = 50000            // 50k
  36. };
  37.  
  38. // MOVIE AND MOVIE CONTROLLER CONSTANTS
  39. enum eMCValues {
  40.      kMCFlags =  0L | mcTopLeftMovie | mcWithBadge            // default MC setup
  41. };
  42.  
  43. enum eMovieValues {
  44.     kMaxMilliSecToUse = 0L                                            // MoviesTask value, 0 indicates as much as possible (serve all movies,
  45.                                                                                     // define other millisecond values if needed.
  46. };
  47.  
  48.  
  49.  
  50.